home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-10 | 1.4 KB | 56 lines | [TEXT/MPS ] |
- ; ------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; MessageJumpTable.a
- ;
- ; DESCRIPTION
- ; This file contains jump table entries for each of the messages that the HPXL
- ; driver overrides. The routines referenced in this jump table are contained
- ; in the file, MessageRoutines.c
- ;
- ; COPYRIGHT
- ; Copyright © Apple Computer, Inc. 1992-1994
- ; All rights reserved.
- ;
- ; MODIFICATION HISTORY
- ; 1/20/92 Harita Initial implementation
- ; 12/20/93 dmh Sync'd up for GX 1.0b3.
- ; 8/28/94 dmh Sync'd up for GX 1.0.1.
- ;--------------------------------------------------------------------------------
-
- ; Sets entry point SD_JumpTable, and adds a long at the beginning of the
- ; jump table which is required by the Printing Manager's segment loading code.
-
- SD_JumpTable PROC EXPORT
- EXPORT referenceCount
- referenceCount DC.L 0
-
- ; Universal messages the HPXL driver overrides
-
- IMPORT SD_Initialize
- JMP SD_Initialize
-
- IMPORT SD_ShutDown
- JMP SD_ShutDown
-
- IMPORT SD_DefaultPrinter
- JMP SD_DefaultPrinter
-
- IMPORT SD_StartSendPage
- JMP SD_StartSendPage
-
- IMPORT SD_FinishSendPage
- JMP SD_FinishSendPage
-
- IMPORT SD_SetupImageData
- JMP SD_SetupImageData
-
- IMPORT SD_CloseConnection
- JMP SD_CloseConnection
-
- ; Vector specific messages the HPXL driver overrides
-
- IMPORT SD_PackageData
- JMP SD_PackageData
-
- END